All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker. This will install the whole docker suite, left only Tini to be compiled manually.
Discover gists
Markdown-only workbook for Exam GH-600: Developing in Agentic AI Systems.
Last updated: May 24, 2026.
This version is organized around the official GH-600 domains. Each domain explains the concepts, shows the GitHub implementation artifacts, and includes examples you should be able to read in YAML, Markdown, CLI output, PR timelines, and audit logs.
Public sharing note: this guide is not an exam dump and does not contain real exam questions or answer choices. It is a structured study workbook built from official Microsoft and GitHub documentation, with practical examples written for learning and review.
| #!/usr/bin/env python2.7 | |
| # encoding: utf-8 | |
| ## Get filings from master list | |
| ## Available here: ftp://ftp.sec.gov/edgar/full-index/ | |
| ## Jasper GInn | |
| ## 07/05/2016 | |
| ## Call function from terminal | |
| ## python processMasterFilings.py </path/to/master/list> </path/to/output/csv> <document type> |
An guide how to activate Windows 11 Pro for free
Because you will get some more features like an Bitlocker and host your device as an External Desktop which can be accessed through the internet
The answer is yes! You can switch from almost any edition to Pro completely for free!
People which already have Pro, but not activated, can skip to this step.
What you first need to do is open CMD (Command Prompt) as Administrator using this keyboard key:
| { | |
| "Create public function": { | |
| "prefix": "pubf", | |
| "body": [ | |
| "public function $1()", | |
| "{", | |
| "\t$2", | |
| "}", | |
| ], | |
| "description": "Create public function" |
| -- Add these settings to ~/.config/hypr/input.lua on Omarchy. | |
| hl.config({ | |
| input = { | |
| touchpad = { | |
| natural_scroll = true, | |
| tap_to_click = true, | |
| disable_while_typing = true, | |
| tap_and_drag = false, | |
| drag_lock = false, | |
| clickfinger_behavior = true, |
| #!/usr/bin/python | |
| # vim: set ft=python: | |
| # see the README at https://gist.github.com/v-fox/43c287426c366679afc4c65eece60cbc | |
| # source: https://github.com/mpv-player/mpv/issues/2149 | |
| # source: https://github.com/mpv-player/mpv/issues/566 | |
| # source: https://github.com/haasn/gentoo-conf/blob/nanodesu/home/nand/.mpv/filters/mvtools.vpy | |
| import vapoursynth as vs | |
| import functools |
A pattern for building personal knowledge bases using LLMs.
This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.
Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.
| From e4db4f07e77feb1c126e7afbf441e9eae34b4e57 Mon Sep 17 00:00:00 2001 | |
| From: Kelvie Wong <kelvie@kelvie.ca> | |
| Date: Sun, 2 Oct 2022 13:23:25 -0700 | |
| Subject: [PATCH] Add a lockdown_hibernate parameter | |
| This allows the user to tell the kernel that they know better (namely, | |
| they secured their swap properly), and that it can enable hibernation. | |
| Signed-off-by: Kelvie Wong <kelvie@kelvie.ca> | |
| --- |
| #!/bin/bash | |
| set -e | |
| GO_VERSION="1.22.3" | |
| GO_URL="https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz" | |
| EXPECTED_CHECKSUM="8920ea521bad8f6b7bc377b4824982e011c19af27df88a815e3586ea895f1b36" | |
| # Log output of script | |
| exec > >(tee -i /home/ubuntu/install.log) | |
| exec 2>&1 |